runtime.mSpanList.first (field)
24 uses
runtime (current package)
arena.go#L903: s = h.userArena.readyList.first
mgcwork.go#L367: if work.wbufSpans.free.first != nil {
mgcwork.go#L369: s = work.wbufSpans.free.first
mgcwork.go#L478: span := work.wbufSpans.free.first
mheap.go#L406: first *mspan // first span in list, or nil if none
mheap.go#L1705: list.first = nil
mheap.go#L1715: if list.first == span {
mheap.go#L1716: list.first = span.next
mheap.go#L1731: return list.first == nil
mheap.go#L1739: span.next = list.first
mheap.go#L1740: if list.first != nil {
mheap.go#L1743: list.first.prev = span
mheap.go#L1748: list.first = span
mheap.go#L1763: list.first = span
mheap.go#L1777: for s := other.first; s != nil; s = s.next {
mheap.go#L1786: other.last.next = list.first
mheap.go#L1787: list.first.prev = other.last
mheap.go#L1788: list.first = other.first
mheap.go#L1791: other.first, other.last = nil, nil
stack.go#L195: s := list.first
stack.go#L399: s = stackLarge.free[log2npage].first
stack.go#L1227: for s := list.first; s != nil; {
stack.go#L1243: for s := stackLarge.free[i].first; s != nil; {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |